home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 20 / Cream of the Crop 20 (Terry Blount) (1996).iso / bbs / cddk9606.zip / FREE.ARJ / TEMPLATE.PAS < prev    next >
Pascal/Delphi Source File  |  1996-06-10  |  244b  |  18 lines

  1.  
  2. {$A+,B-,F+,I-,Q-,R-,S-,X+}
  3.  
  4. USES
  5.   Concerto, Scripts;
  6.  
  7. BEGIN
  8.  
  9. RegisterConcerto;
  10. { Insert your registration procedure(s) here }
  11. Script('Init');
  12. { Run any other initialization scripts here }
  13.  
  14. { INSERT GAME! }
  15.  
  16. ExitDoor(0);
  17. END.
  18.